(adsbygoogle = window.adsbygoogle || []).push({});
function typeText(itemID)
{
var inputObj = document.getElementById(“type” + itemID); // Creating reference to input box
var hiddenObj = document.getElementById(“hidden” + itemID); // Creating reference to hidden text
if(inputObj.value.toLowerCase() == hiddenObj.value.toLowerCase()){
inputObj.style.backgroundColor=’#0F0′; // Set green background color for dragged object
}else{
inputObj.style.backgroundColor=’RED’; // Reset back to default white background color
}
}
/* */
(adsbygoogle = window.adsbygoogle || []).push({});